home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 44
/
Amiga Format CD44 (1999-08-26)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-10].iso
/
-serious-
/
wb
/
merlin
/
rexx
/
fahrenheittocelsius.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1999-07-12
|
795b
|
43 lines
/* RUN "rx MCP:rexx/FahrenheitToCelsius.rexx %n" */
Arg node_number /* node we were run from */
Host = 'MCPREXX.'node_number /* the Trion MCP Arexx port */
Options results
Address value host
options failat 15
/* say "node: "node_number */
if node_number = "" then do
say "error .. rexx script not started with %n on command line"
exit 1
end
ReadString "ID 13"
Fahrenheit = result
if Fahrenheit < -459.4 then do
Fahrenheit = -459.4
WriteString "13" Fahrenheit
end
/* say "Fahrenheit:" Fahrenheit */
Celsius = (Fahrenheit - 32) * (5/9)
/* say "Celsius:" Celsius */
/* WriteString '14, Celsius' */
WriteString "14" Celsius
exit 0 /* einde programma */
test: /* een functie: 'call test' */
return 0